Func_(T1, T2, T3, T4, T5, TResult) Delegate

Task Parallel System.Threading

Encapsulates a method that has five parameters and returns a value of the type specified by the TResult parameter.

Namespace:  System
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Function Func_(Of T1, T2, T3, T4, T5, TResult) ( _
	arg1 As T1, _
	arg2 As T2, _
	arg3 As T3, _
	arg4 As T4, _
	arg5 As T5 _
) As TResult
C#
public delegate TResult Func_<T1, T2, T3, T4, T5, TResult>(
	T1 arg1,
	T2 arg2,
	T3 arg3,
	T4 arg4,
	T5 arg5
)

Parameters

arg1
Type: T1
arg2
Type: T2
arg3
Type: T3
arg4
Type: T4
arg5
Type: T5

Type Parameters

T1
T2
T3
T4
T5
TResult

See Also